home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / bootbat.arc / BOOT.DOC < prev    next >
Encoding:
Text File  |  1986-09-23  |  1.4 KB  |  38 lines

  1.                                     BOOT.DOC
  2.  
  3.  
  4.         BOOT is a utility that will warm start your PC using a DOS command.  I 
  5.         originally wrote this program so I could reboot from a BAT file.  An 
  6.         example usage is a BAT file that swaps one AUTOEXEC.BAT file (or a 
  7.         CONFIG.SYS file) for another.  
  8.  
  9.         Example BAT file:
  10.  
  11.                 RENAME \CONFIG.SYS \TEMP.SYS
  12.                 RENAME \OLD.SYS \CONFIG.SYS
  13.                 RENAME \TEMP.SYS \OLD.SYS
  14.                 BOOT
  15.  
  16.         One very useful side effect is that the DOS call I use bypasses the 
  17.         Winchester controller board's  firmware reset routines.  This reduces 
  18.         the reboot time by 20-30 seconds on my machine!  I have used BOOT for 
  19.         a year now and have seen no problems associated with bypassing the 
  20.         reset routines.
  21.  
  22.         In addition to this DOC file and the actual BOOT programs, the 
  23.         original BOOT.ARC file contains two ASM files: BOOT1.ASM and 
  24.         BOOT2.ASM.  The two files are included as examples for novice ASM 
  25.         programmers and demonstrate some of the coding differences required 
  26.         for .COM and .EXE program files.  BOOT1.ASM results in a .COM version 
  27.         that is 97 bytes long.  BOOT2.ASM is the .EXE version and results in a 
  28.         program that is 686 bytes long. 
  29.  
  30.  
  31.  
  32.  
  33.         Brad Stephenson
  34.         Jenison, MI
  35.         August 1, 1986
  36.  
  37.  
  38.